
APAR= II10010
LOTUS CC:MAIL FOR THE INTERNET RELEASE 1
WITH AS/400 CLIENT ACCESS FOR WINDOWS 95 R311
***** This APAR is a continuation of II10009*****

 Configure the Mail System Framework
 -----------------------------------

 The AS/400 will start the QMSF job(s) when the system is
 IPL'ed.  The default number of QMSF jobs started under the
 QSYSWRK subsystem is 1.  You may wish to change the number
 or QMSF jobs to increase performance.  To change the number
 of QMSF jobs that start during an IPL, change the NBRMSFJOB
 parameter value with the following command:

   CHGJOBD JOBD(QSYS/QZMFEJBD) RQSDTA('STRMSF MSGOPT(*RESUME)
   NBRMSFJOB(3)

 You can also set this value by ending and restarting the MSF
 jobs.  To end the QMSF jobs, use the command:
    ENDMSF

 To start the QMSF jobs, use the command:
    STRMSF NBRMSFJOB(x) where x is the number of MSF jobs.
 The default number of jobs started when the STRMSF command
 is executed is three.

 For optimal performance, an estimate would be to use a
 minimum of three MSF jobs with one additional job per 100
 users.


 Start the QSNADS subsystem (optional)
 -------------------------------------
 If you wish to send mail between cc:Mail users and OV/400
 users or users on other SNA attached AS/400s, you will need
 to start the QSNADS subsystem:
    STRSBS QSNADS


 Client Access IPX/SPX connections
 ---------------------------------

 Client Access IPX/SPX connections require the token ring
 line description maximum frame size default value of 1994
 be changed to a minimum of 4096. This change would normally
 be made by your AS/400 system administrator.

 Starting IPX jobs on the AS/400
 -------------------------------

 If Client Access IPX/SPX connections are to be used, the IPX
 line description must be started before the AS/400 POP3 mail
 server.  The AS/400 commands should be issued in the following
 sequence:

     STRIPX line-description
     STRTCPSVR *POP

 Automatically starting the server jobs
 --------------------------------------
 The AS/400 startup program can be modified to start the
 various communication protocols and server programs required
 to run cc:Mail.  Add the following commands to your AS/400
 startup program:

 1. SNA-only networks (i.e. SMTP will not be configured or
    used)

    /* START TCP (EVEN FOR SNA!) */
    STRTCP STRSVR(*NO)
    MONMSG MSGID(CPF0000)
    /* START THE CLIENT ACCESS POP3 SERVER */
    STRTCPSVR  SERVER(*POP)
    MONMSG MSGID(CPF0000)
    /* START QSNADS (IF NEEDED) */
    QSYS/STRSBS SBSD(QSNADS)
    MONMSG MSGID(CPF0000)

2. TCP/IP attached users
    /* START TCP */
    STRTCP     STRSVR(*YES)
    MONMSG MSGID(CPF0000)
    /* DELAY WHILE TCP BATCH JOBS INITIALIZE */
    DLYJOB(60)
    /* START THE CLIENT ACCESS HOST SERVER DAEMONS */
    STRHOSTSVR *ALL
    /* START QSNADS (IF NEEDED) */
    QSYS/STRSBS SBSD(QSNADS)
    MONMSG MSGID(CPF0000)

    STRHOSTSVR *ALL
    /* START QSNADS (IF NEEDED) */
    QSYS/STRSBS SBSD(QSNADS)
    MONMSG MSGID(CPF0000)

3. IPX attached users
    /* START IPX */
    STRIPX    line-description-name
    MONMSG MSGID(CPF0000)
    /* DELAY WHILE IPX BATCH JOBS INITIALIZE */
    DLYJOB(60)
    /* START THE CLIENT ACCESS POP3 SERVER */
    STRTCPSVR  SERVER(*POP)
    MONMSG MSGID(CPF0000)
    /* START THE CLIENT ACCESS HOST SERVER DAEMONS */
    STRHOSTSVR *ALL
    /* START QSNADS (IF NEEDED) */
    QSYS/STRSBS SBSD(QSNADS)
    MONMSG MSGID(CPF0000)

 The source for the existing startup program can be retrieved
 by using the command Retrieve CL source as follows:

 CAUTION: ONLY EXPERIENCED ADMINISTRATORS SHOULD MODIFY THE
 STARTUP PROGRAM
 1. Determine the name of the existing startup program.
       DSPSYSVAL SYSVAL(QSTRUPPGM)

 2. Retrieve the CL source for this program:
       RTVCLSRC PGM(QSYS/QSTRUP) SRCFILE(QGPL/QCLSRC)
       SRCMBR(MYSTRUP)
    where
    QSYS/QSTRUP is the setting for the QSTRUPPGM system
    value, QGPL/QCLSRC is the source file you wish to use,
    MYSTRUP will be the name of the new startup program.
    TIP:  Create the new startup program in a user library
    and change the system value to point to the new program
    rather then change the IBM supplied startup program.

 3. Modify the CL source and compile the new program:
       CRTCLPGM PGM(MYLIB/MYSTRUP) SRCFILE(QGPL/QCLSRC)

 4. Change the system value to use the new program:
       CHGSYSVAL SYSVAL(QSTRUPPGM) VALUE('MYLIB/MYSTRUP')

 5. TEST.  Monitor the first IPL carefully in case of any
    programming error.  The amount of time it takes TCP/IP or
    IPX to initialize varies depending on the size and speed
    of the system.  The DLYJOB time may need to be adjusted
    depending on the system.
